/*版权所有 (c) 2024 蓝鲨科技有限公司。保留所有权利*/


/*隐藏和显示按钮*/


/* 按钮样式 */

.toggleButton {
    font-family: "fonts3";
    width: 100%;
    /* 按钮内边距，根据需要调整 */
    border: none;
    /* 无边框 */
    background-color: transparent;
    /* 透明背景 */
    color: #000;
    /* 文字颜色，根据需要调整 */
    font-size: 16px;
    /* 字体大小，根据需要调整 */
    cursor: pointer;
    /* 鼠标悬停时显示指针 */
    outline: none;
    /* 移除焦点时的轮廓 */
    transition: color 0.3s;
    /* 颜色变化的过渡效果 */
}


/* 鼠标悬停时的按钮样式 */

.toggleButton:hover {
    color: #007bff;
    /* 鼠标悬停时的文字颜色，根据需要调整 */
}